/** * Author: Simon-Pierre Boucher * Contact: contact@spboucher.ai * Project: Hilmacorp.ai — Web Platform * File: app/[locale]/founders/page.tsx * Description: Founders page — profiles of Simon-Pierre Boucher and Massamba Mbaye */ import type { Metadata } from "next"; import Container from "@/components/Container"; import SectionHeading from "@/components/SectionHeading"; import { getMessages, isLocale, type Locale } from "@/lib/i18n"; export async function generateMetadata({ params, }: { params: Promise<{ locale: string }>; }): Promise { const { locale } = await params; if (!isLocale(locale)) return {}; const { meta } = getMessages(locale); return { title: { absolute: meta.founders.title }, description: meta.founders.description }; } function FounderCard({ name, role, bio, tags, initials, }: { name: string; role: string; bio: string; tags: string[]; initials: string; }) { return (

{name}

{role}

{bio}

); } export default async function FoundersPage({ params, }: { params: Promise<{ locale: string }>; }) { const { locale } = await params; const { founders } = getMessages(locale as Locale); return ( <>
); }